home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / xinetd / xinetd.2.0.6 / conf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-22  |  490 b   |  30 lines

  1. /*
  2.  * (c) Copyright 1992 by Panagiotis Tsirigotis
  3.  * All rights reserved.  The file named COPYRIGHT specifies the terms 
  4.  * and conditions for redistribution.
  5.  */
  6.  
  7. #ifndef CONF_H
  8. #define CONF_H
  9.  
  10. /*
  11.  * $Id: conf.h,v 5.1 1992/10/31 23:58:48 panos Exp $
  12.  */
  13.  
  14. #include "pset.h"
  15.  
  16. #include "service.h"
  17.  
  18. struct configuration
  19. {
  20.     pset_h services ;
  21.     struct service *defaults ;
  22. } ;
  23.  
  24. status_e get_configuration() ;
  25. void free_configuration() ;
  26. void dump_current_configuration() ;
  27.  
  28. #endif     /* CONF_H */
  29.  
  30.